| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | /** |
||
| 27 | class UserInterface { |
||
| 28 | |||
| 29 | /** |
||
| 30 | * UserInterface.constructor |
||
| 31 | */ |
||
| 32 | constructor() { |
||
| 33 | Pace.start(); |
||
| 34 | |||
| 35 | $(".perfect-scrollbar").each(function(){ |
||
| 36 | const ps = new PerfectScrollbar($(this)[0]); |
||
|
|
|||
| 37 | }); |
||
| 38 | |||
| 39 | $('[data-toggle="dropdown"]').dropdown(); |
||
| 40 | $('[data-toggle="popover"]').popover(); |
||
| 41 | $('[data-toggle="tooltip"]').tooltip(); |
||
| 42 | } |
||
| 43 | } |
||
| 44 | |||
| 45 | export default new UserInterface; |